home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / string / strcpy.c < prev    next >
C/C++ Source or Header  |  1992-03-27  |  2KB  |  68 lines

  1. /* 
  2.  * strcpy.c --
  3.  *
  4.  *    Source code for the "strcpy" library routine.
  5.  *
  6.  * Copyright 1988 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  */
  15.  
  16. #ifndef lint
  17. static char rcsid[] = "$Header: /sprite/src/lib/c/string/RCS/strcpy.c,v 1.4 92/03/27 13:30:02 rab Exp $ SPRITE (Berkeley)";
  18. #endif /* not lint */
  19.  
  20. #include <string.h>
  21.  
  22. /*
  23.  *----------------------------------------------------------------------
  24.  *
  25.  * strcpy --
  26.  *
  27.  *    Copy a string from one location to another.
  28.  *
  29.  * Results:
  30.  *    The return value is a pointer to the destination string, dst.
  31.  *
  32.  * Side effects:
  33.  *    None.
  34.  *
  35.  *----------------------------------------------------------------------
  36.  */
  37.  
  38. char *
  39. strcpy(dst, src)
  40.     register char *src;        /* Place from which to copy. */
  41.     char *dst;            /* Place to store copy. */
  42. {
  43.     register char *copy = dst;
  44.     register char c;
  45.  
  46.     do {
  47.     c = copy[0] = src[0];
  48.     if (c == '\0') {
  49.         break;
  50.     }
  51.     c = copy[1] = src[1];
  52.     if (c == '\0') {
  53.         break;
  54.     }
  55.     c = copy[2] = src[2];
  56.     if (c == '\0') {
  57.         break;
  58.     }
  59.     c = copy[3] = src[3];
  60.     if (c == '\0') {
  61.         break;
  62.     }
  63.     copy += 4;
  64.     src += 4;
  65.     } while (1);
  66.     return dst;
  67. }
  68.